Skip to contentMethod: RemoteUpdateException(String, Throwable)
      1: package update.remote.exceptions;
2: 
3: /**
4:  * Exception thrown when remote update did not succeed.
5:  * 
6:  * @author Muri
7:  * 
8:  */
9: public class RemoteUpdateException extends Exception {
10: 
11:         /**
12:          * UID.
13:          */
14:         private static final long serialVersionUID = -219214915239116510L;
15: 
16:         /**
17:          * 
18:          */
19:         public RemoteUpdateException() {
20:                 super();
21:                 // TODO Auto-generated constructor stub
22:         }
23: 
24:         /**
25:          * 
26:          * @param arg0
27:          *            arg0
28:          */
29:         public RemoteUpdateException(final String arg0) {
30:                 super(arg0);
31:                 // TODO Auto-generated constructor stub
32:         }
33: 
34:         /**
35:          * 
36:          * @param arg0
37:          *            arg0
38:          */
39:         public RemoteUpdateException(final Throwable arg0) {
40:                 super(arg0);
41:                 // TODO Auto-generated constructor stub
42:         }
43: 
44:         /**
45:          * 
46:          * @param arg0
47:          *            arg0
48:          * @param arg1
49:          *            arg1
50:          */
51:         public RemoteUpdateException(final String arg0, final Throwable arg1) {
52:                 super(arg0, arg1);
53:                 // TODO Auto-generated constructor stub
54:         }
55: 
56: }